home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr03 / gscrp29a.zip / INSTALL.BAT < prev    next >
DOS Batch File  |  1993-07-16  |  4KB  |  111 lines

  1. @echo off
  2. if (%1)==() goto USAGE
  3. if (%2)==() goto USAGE
  4. if not exist install.bat goto USAGE
  5. if not exist %1\nul goto nopath
  6. if not exist %2\nul goto nopath
  7. if exist %1\GSCRIPT.DOT goto warning
  8.  
  9. if not exist gscript.dot goto nofile
  10. if not exist gsfdoc.doc goto nofile
  11. if not exist gsfdemo.doc goto nofile
  12. if not exist gscript.hlp goto nofile
  13. if not exist gscript.ini goto nofile
  14.  
  15. cls
  16. Echo.
  17. Echo gScript Installation
  18. echo ─────────────────────────────────────────────────
  19. Echo Path confirmation.
  20. Echo.
  21. Echo You wish to copy GSCRIPT.DOT, GSFDEMO.DOC and GSFDOC.DOC
  22. Echo to the Dot-Path [%1]
  23. Echo.
  24. Echo.
  25. Echo You wish to copy GSCRIPT.INI and GSCRIPT.HLP to the 
  26. Echo Windows directory [%2]
  27. Echo.
  28. Echo.
  29. Echo Press Ctrl-C if this is incorrect. Or
  30. Pause
  31. ECHO Copying GSCRIPT.DOT, GSFDOC.DOC, GSFDEMO.DOC to DOT Path: %1
  32. COPY GSCRIPT.DOT %1 >Nul
  33. COPY GSFDEMO.DOC %1 >Nul
  34. COPY GSFDOC.DOC %1  >Nul
  35. ECHO Copying GSCRIPT.HLP and GSCRIPT.INI to Windows directory: %2
  36. COPY GSCRIPT.HLP %2 >Nul
  37. COPY GSCRIPT.INI %2 >Nul
  38. echo ─────────────────────────────────────────────────
  39. Echo.
  40. echo Installation complete.
  41. echo.
  42. echo Enter Word for Windows and Open the file %1\GSFDEMO.DOC.
  43. echo for a demonstration of gScript.
  44. echo.
  45. echo GSFDOC.DOC is the full documentation.
  46. echo.
  47. echo Enjoy.
  48. goto DONE
  49.  
  50. :USAGE
  51. cls
  52. echo.
  53. echo ────────────────────────────────────────────────────────
  54. echo USAGE:   install [DOT file path] [Windows path]
  55. echo ────────────────────────────────────────────────────────
  56. echo          Installs GSCRIPT files from the *current* drive or
  57. echo          directory into the specified directories.
  58. echo.
  59. echo       ┌┬─────────────────────────────────────────────────────────┐
  60. echo       ││ By default Word for Windows and it's templates are      │
  61. echo       ││ installed into C:\WINWORD.                              │
  62. echo       ││                                                         │
  63. ECHO       ││ If you are unsure of the Dot-Path, enter FileManager    │
  64. echo       ││ and locate NORMAL.DOT                                   │
  65. echo       └┴─────────────────────────────────────────────────────────┘
  66. echo          Do not append a final backslash on any of the path
  67. echo          designations
  68. echo ─────────────────────────────────────────────────
  69. echo EXAMPLES:
  70. echo           install c:\winword c:\windows
  71. echo           install c:\winword\dot c:\win
  72. ECHO.
  73. pause
  74. Goto DONE
  75. :NoFile
  76. cls
  77. echo ─────────────────────────────────────────────────
  78. echo Error.  Source file not found.
  79. echo.
  80. echo    One or more of the files listed below were not found in the
  81. echo    current directory.
  82. echo.
  83. echo   GSCRIPT.DOT, GSFDOC.DOC, GSFDEMO.DOC, GSCRIPT.HLP, GSCRIPT.INI
  84. echo.
  85. pause
  86. goto Done
  87. :noPath
  88. cls
  89. echo ─────────────────────────────────────────────────
  90. Echo Error.  Could not locate path %1
  91. Echo.
  92. Echo    Please check that the destination paths *already* exist
  93. Echo    And have been properly typed at the command line
  94. echo ─────────────────────────────────────────────────
  95. echo EXAMPLES:
  96. echo           install c:\winword c:\windows
  97. echo           install c:\winword\dot c:\win
  98. pause
  99. goto Done
  100. :Warning
  101. cls
  102. Echo.
  103. echo ─────────────────────────────────────────────────
  104. Echo  There is already a copy of GSCRIPT.DOT in the dot-path: %1
  105. Echo.
  106. Echo  Chances are you are updating from an earlier version.
  107. Echo  Please rename the existing GSCRIPT.DOT to another name
  108. Echo  before running INSTALL.BAT
  109. pause
  110. :DONE
  111.